From: Paul Eggert Date: Thu, 7 Apr 2011 02:53:19 +0000 (-0700) Subject: * eval.c (internal_lisp_condition_case): Don't pass spurious arg. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~4165^2~24 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=f46b2011f4460b31ba1bbfbc051193882d2187f6;p=emacs.git * eval.c (internal_lisp_condition_case): Don't pass spurious arg. --- diff --git a/src/ChangeLog b/src/ChangeLog index 235afc9a4ac..bd0ee83c525 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2011-04-07 Paul Eggert + * eval.c (internal_lisp_condition_case): Don't pass spurious arg. + * keyboard.c (access_keymap_keyremap): Print func name, not garbage. 2011-04-06 Paul Eggert diff --git a/src/eval.c b/src/eval.c index 93da7799bec..8b029967e7a 100644 --- a/src/eval.c +++ b/src/eval.c @@ -1401,7 +1401,7 @@ internal_lisp_condition_case (volatile Lisp_Object var, Lisp_Object bodyform, || (CONSP (tem) && (SYMBOLP (XCAR (tem)) || CONSP (XCAR (tem)))))) - error ("Invalid condition handler", tem); + error ("Invalid condition handler"); } c.tag = Qnil;